/* ------------ Allgemeine Formatierung -------------- */
* {
  margin: 0px;
  padding: 0px;
}
h2 {
  font-size: 35px;
  color: darkblue;
}
h3 {
  font-family: impact, arial, sans-serif;
  font-size: 28px;
  color: darkblue;
  text-transform: uppercase;
  font-weight: normal;
}
h4 {
  font-family: arial, sans-serif;
  font-size: 18px;
  color: lightblue;
  text-transform: uppercase;
  font-weight: bold;
}
h5 {
  font-family: arial, sans-serif;
  font-size: 15px;
  color: lightblue;
  text-transform: uppercase;
  font-weight: bold;
}
#reiseplaner {
  font-size: 50px;
  padding: 20px;
  border: 2px solid darkblue;
  border-radius: 25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  display: inline-block;
  width: 300px;
  background-color: rgba(255, 255, 255, 0.5);
}
#obenunten {
  float: right;
  text-decoration: none;
  font-size: 40px;
  padding-right: 10px;
  color: darkblue;
}
a {
  text-decoration: none;
  color: rgb(33, 111, 147);
}
a:hover {
  color: rgb(54, 173, 233);
}
.menu {
  position: absolute;
  right: 20px;
  top: 15px;
  padding-right: 30px;
}
.menu-button {
  background: #fff;
  color: darkblue;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  border: 1px solid white;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.menu-button:hover {
  background: lightblue;
}
.menu-content {
  display: none;
  position: absolute;
  top: 50px;
  right: 20px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}
.menu-content a {
  display: block;
  padding: 10px 20px;
  color: darkblue;
  text-decoration: none;
}
.menu-content a:hover {
  background: lightblue;
}
nav {
  margin-top: 60px;
  text-align: center;
  background: #f1f1f1;
  padding: 10px;
}
button {
  margin: 10px;
}
article {
  color: black;
  line-height: 22px;
}
#bild {
  margin: 60px;
  margin-bottom: 0px;
}
#articleüberschrift {
  margin: 0px auto;
  padding-top: 40px;
  text-align: center;
  color: darkblue;
  font-size: 20px;
}
article img {
  width: 100%;
  border: 1px solid darkblue;
  border-radius: 25px;
  box-shadow: 0px 4px 6px rgba(31, 29, 29, 0.1);
}
article h3 {
  font-size: 38px;
  color: black;
  font-family: sans-serif, Impact, 'Arial Narrow Bold';
}
article h4 {
  font-size: 22px;
  color: black;
  font-family: sans-serif, Impact, 'Arial Narrow Bold';
  padding: 30px 20px;
}
article ul {
  margin-left: 100px;
}
#article1 {
  background-color: white;
  text-align: center;
  color: darkblue;
  font-size: 20px;
}
#article1 p {
  margin: 10px;
  padding: 10px;
  border: 1px solid lightblue;
  background-color: white;
  border-radius: 80px;
  cursor: pointer;
  display: inline-block;
  width: 190px;
  font-size: 30px;
  color: rgb(51, 102, 214);
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
}
#articleüberschrift {
  margin: 0px auto;
  padding: 40px;
  text-align: center;
  color: darkblue;
  font-size: 20px;
}
#ziel {
  text-align: center;
  color: rgb(51, 102, 214);
  font-size: 30px;
}
#article1 button {
  margin: 10px;
  padding: 10px;
  border: 1px solid lightblue;
  border-radius: 80px;
  background-color: white;
  cursor: pointer;
  display: inline-block;
  width: 340px;
  font-size: 30px;
  color: rgb(51, 102, 214);
  box-shadow: 0px 2px 5px 2px rgba(0, 0, 0, 0.2);
}
ul p {
  display: inline;
  font-weight: bold;
}
/* ------------ Allgemeine Klassen ------------------- */
.clearing{
  clear: both;
}
html {
  scroll-behavior: smooth;
}
/* ---------------------- BOXEN ----------------------- */
body {
  font-family: Arial, Calibri, sans-serif;
  font-size: 15px;
  color: #585857;
  margin: 0;
}
header {
  height: 50px;
  padding: 20px;
  background-color: white;
  position: fixed;
  top: 0;
  width: 100%;
  transition: transform 0.3s ease-in-out;
}
header.hidden {
  transform: translateY(-100%);
}
header img {
  height: 50px;
  float: left;
  padding-right: 8px;
}
main {
  margin-top: 100px;
  margin-bottom: 100px;
  background-color: rgba(255, 255, 255, 0);
}
footer {
  background-color: #449fca;
  padding: 10px;
  min-height: 150px;
  font-size: 16px;
  color: white;
  border-top: 20px solid lightblue;
  border-bottom: 20px solid lightblue;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
.footer-section {
  flex: 1;
  padding: 10px;
}
.footer-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.footer-section p {
  margin: 5px 0;
  font-size: 20px;
  padding: 2px;
}
footer a {
  color: white;
}